home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / TransSkel / Demos / Pascal Demos / Button / Globals.p < prev   
Text File  |  1994-02-11  |  293b  |  28 lines

  1. unit ButtonGlobals;
  2.  
  3. interface
  4.  
  5.  
  6.     const
  7.  
  8.         normalHilite = 0;
  9.         dimHilite = 255;
  10.  
  11. { Resource Numbers    }
  12.  
  13.         dlog1Res = 1001;
  14.         dlog2Res = 1002;
  15.         dlog3Res = 1003;
  16.  
  17.         aboutAlrtRes = 1000;
  18.  
  19.         fileMenuRes = 1000;
  20.         windRes = 1000;
  21.  
  22.     var
  23.  
  24.         horizRatio: Fixed;
  25.         vertRatio: Fixed;
  26.  
  27. implementation
  28. end.